a0a8f7cda03878089dd99d990a9b435c537adb08,elastic-job-cloud/elastic-job-cloud-scheduler/src/main/java/com/dangdang/ddframe/job/cloud/scheduler/boot/MasterBootstrap.java,MasterBootstrap,stop,#,179

Before Change


     * �止�行.
     */
    public synchronized void stop() {
        if (null != taskLaunchScheduledService) {
            taskLaunchScheduledService.stopAsync();
        }
        if (null != statisticsScheduledService) {
            statisticsScheduledService.stopAsync();

After Change


        cloudJobConfigurationListener.stop();
        reconcileScheduledService.stopAsync();
        statisticsScheduledService.stopAsync();
        taskLaunchScheduledService.stopAsync();
        restfulService.stop();
    }